.travel-management {
    background: linear-gradient(to right, #e9fdfc, #f1f8ff);
    padding: 70px 20px;
    text-align: center;
    border-radius: 18px;
    margin: 40px auto;
    max-width: 1200px;
    animation: fadeSlideIn 1.5s ease-in-out;
  }
  
  .travel-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #0a2e5d;
    animation: slideDown 1s ease-out;
  }
  
  .travel-header p {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
    animation: fadeIn 1.2s ease-in;
  }
  
  .travel-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .travel-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    width: 280px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeUp 1s forwards;
  }
  
  .travel-card:nth-child(1) { animation-delay: 0.2s; }
  .travel-card:nth-child(2) { animation-delay: 0.4s; }
  .travel-card:nth-child(3) { animation-delay: 0.6s; }
  
  .travel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  }
  
  .travel-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .travel-card h3 {
    font-size: 20px;
    color: #0077b6;
    margin-bottom: 10px;
  }
  
  .travel-card p {
    font-size: 15px;
    color: #555;
  }
  
  /* Animations */
  @keyframes fadeSlideIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }
  
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes cardFadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .travel-features {
      flex-direction: column;
      align-items: center;
    }
  
    .travel-card {
      width: 90%;
    }
  }
  